home *** CD-ROM | disk | FTP | other *** search
- /*
- File: TestApp.c
-
- Contains: Sample code for Language Analysis Manager.
-
- Version: Technology: System 8
- Release: Daruma Developer Release 1
-
- Copyright: 1998 by Apple Computer, Inc., all rights reserved
-
- Contact: daruma@apple.com
-
- */
-
-
- #define _MAINFILE_
-
- #include "TestApp.h"
- #include "FunctionProto.h"
-
- // ========================================================================================
- // main
- // ========================================================================================
- void main ( void )
- {
- OSStatus err;
-
- err = Initialize();
- nrequire( err, initialize_Failure);
-
- MainEventLoop();
-
- initialize_Failure:
- return;
- }
-
-
-
-
-